home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / CIS.SCR < prev    next >
Text File  |  1986-02-22  |  2KB  |  55 lines

  1. .LINKED SCRIPT FOR COMPUSERVE INFORMATION SERVICE (CIS)
  2. .VIA COMPUSERVE'S OWN NETWORK;
  3. .LINK IT TO YOUR QMODEM PHONE DIRECTORY ENTRY FOR ANY CIS PHONE NUMBER(S).
  4.  
  5. .NOTE: This script assumes that you have set your terminal options
  6. .on CIS (see CIS main menu) at 8 bits, no parity, 1 stop bit. If not,
  7. .this script may NOT work for you! Your QMODEM settings should be the same.
  8. .Exception: 2400 baud seems to need 7 bits, even parity, 1 stop bit.
  9. .ALSO: Be sure to use XMODEM RELAXED protocol if you download CIS files!
  10.  
  11. .USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
  12. .  [1] Your CIS account#
  13. .  [2] Your CIS password
  14. .  [3] Any CIS command(s)
  15.  
  16. .COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
  17.  
  18. .Display message on-screen only
  19. NOTE ** LOGON TO COMPUSERVE **
  20.  
  21. .The next line says to WAITFOR 60 seconds before halting script
  22. TIMEOUT 60
  23.  
  24. .Set key parameters for CIS
  25. TURNOFF ECHO LINEFEED
  26.  
  27. .Call CIS; phone number, bps, comm parameters depend on directory entry #.
  28. .For local #s, contact CIS at 800-848-8990 or 614-457-8650
  29.  
  30. .Pause for 1 second, then send Ctrl-C to establish 'handshake' with CIS
  31. SEND "~~"
  32.  
  33. .Wait for CIS to request your account#
  34. WAITFOR ":"
  35.  
  36. .[1] Pause 1 second, then reply with your account#
  37. SEND "~~12345,1234{"
  38.  
  39. .Wait for CIS to request your password
  40. WAITFOR "Password:"
  41.  
  42. .[2] Pause 1 second, then reply with your CIS password
  43. SEND "~~FAKE-PASSWORD{"
  44.  
  45. .Wait for CIS to Request your input
  46. WAITFOR "!"
  47.  
  48. .[3] Pause for 1 second, then send any CIS command, such as:
  49. .    GO PCS-131 (IBM PRO-SIG) or GO PCS-129 (IBM NOVICE SIG)
  50. SEND "~~GO PCS-131{"
  51.  
  52. .Discontinue script processing; return control to keyboard
  53. RETURN
  54. 
  55.